查询门店
请求参数 | 类型 | 描述 |
---|---|---|
store_id | integer | 微信支付商户门店ID |
query | object | 声明请求的查询参数 |
sub_mchid | string | 特约商户号 |
php
$instance->v3->merchantStore->stores->_store_id_->getAsync([
'store_id' => '20488000',
'query' => [
'sub_mchid' => '1900000109',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/merchant-store/stores/{store_id}')->getAsync([
'store_id' => '20488000',
'query' => [
'sub_mchid' => '1900000109',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/merchant-store/stores/{store_id}']->getAsync([
'store_id' => '20488000',
'query' => [
'sub_mchid' => '1900000109',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->merchantStore->stores->_store_id_->get([
'store_id' => '20488000',
'query' => [
'sub_mchid' => '1900000109',
],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/merchant-store/stores/{store_id}')->get([
'store_id' => '20488000',
'query' => [
'sub_mchid' => '1900000109',
],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/merchant-store/stores/{store_id}']->get([
'store_id' => '20488000',
'query' => [
'sub_mchid' => '1900000109',
],
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典 | 类型 | 描述 |
---|---|---|
store_basics | object | 门店基础信息 |
store_reference_id | string | 商家门店编号 |
brand_name | string | 品牌名称 |
store_name | string | 门店名称 |
branch_name | string | 分店名称 |
store_address | object | 门店地址信息 |
address_code | string | 门店省市编码 |
address_detail | string | 门店地址 |
address_complements | string | 门店地址辅助描述 |
longitude | string | 门店经度 |
latitude | string | 门店纬度 |
store_business | object | 门店经营信息 |
service_phone | string | 门店服务电话 |
business_hours | string | 门店经营时间 |
store_recipient | object[] | 门店收款信息 |
mchid | string | 门店收款商户号 |
company_name | string | 门店收款主体 |
修改门店
请求参数 | 类型 | 描述 |
---|---|---|
store_id | integer | 微信支付商户门店ID |
json | object | 声明请求的JSON 数据结构 |
sub_mchid | string | 子商户号 |
store_basics | object | 门店基础信息 |
store_reference_id | string | 商家门店编号 |
brand_name | string | 品牌名称 |
store_name | string | 门店名称 |
store_business | string | 分店名称 |
store_address | object | 门店地址信息 |
address_code | string | 门店省市编码 |
address_detail | string | 门店地址 |
address_complements | string | 门店地址辅助描述 |
longitude | string | 门店经度 |
latitude | string | 门店纬度 |
store_business | object | 门店经营信息 |
service_phone | string | 门店服务电话 |
business_hours | string | 门店经营时间 |
php
$instance->v3->merchantStore->stores->_store_id_->patchAsync([
'store_id' => '20488000',
'json' => [
'sub_mchid' => '1900000109',
'store_basics' => [
'store_reference_id' => '',
'brand_name' => '',
'store_name' => '',
'store_business' => '',
],
'store_address' => [
'address_code' => '440305',
'address_detail' => '',
'address_complements' => '',
'longitude' => '',
'latitude' => '',
],
'store_business' => [
'service_phone' => '0755-86013388',
'business_hours' => '周一至周五 09:00-20:00|周六至周日 10:00-22:00',
],
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r($response->getStatusCode() === 204);
})
->wait();
php
$instance->chain('v3/merchant-store/stores/{store_id}')->patchAsync([
'store_id' => '20488000',
'json' => [
'sub_mchid' => '1900000109',
'store_basics' => [
'store_reference_id' => '',
'brand_name' => '',
'store_name' => '',
'store_business' => '',
],
'store_address' => [
'address_code' => '440305',
'address_detail' => '',
'address_complements' => '',
'longitude' => '',
'latitude' => '',
],
'store_business' => [
'service_phone' => '0755-86013388',
'business_hours' => '周一至周五 09:00-20:00|周六至周日 10:00-22:00',
],
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r($response->getStatusCode() === 204);
})
->wait();
php
$instance['v3/merchant-store/stores/{store_id}']->patchAsync([
'store_id' => '20488000',
'json' => [
'sub_mchid' => '1900000109',
'store_basics' => [
'store_reference_id' => '',
'brand_name' => '',
'store_name' => '',
'store_business' => '',
],
'store_address' => [
'address_code' => '440305',
'address_detail' => '',
'address_complements' => '',
'longitude' => '',
'latitude' => '',
],
'store_business' => [
'service_phone' => '0755-86013388',
'business_hours' => '周一至周五 09:00-20:00|周六至周日 10:00-22:00',
],
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r($response->getStatusCode() === 204);
})
->wait();
php
$response = $instance->v3->merchantStore->stores->_store_id_->patch([
'store_id' => '20488000',
'json' => [
'sub_mchid' => '1900000109',
'store_basics' => [
'store_reference_id' => '',
'brand_name' => '',
'store_name' => '',
'store_business' => '',
],
'store_address' => [
'address_code' => '440305',
'address_detail' => '',
'address_complements' => '',
'longitude' => '',
'latitude' => '',
],
'store_business' => [
'service_phone' => '0755-86013388',
'business_hours' => '周一至周五 09:00-20:00|周六至周日 10:00-22:00',
],
],
]);
print_r($response->getStatusCode() === 204);
php
$response = $instance->chain('v3/merchant-store/stores/{store_id}')->patch([
'store_id' => '20488000',
'json' => [
'sub_mchid' => '1900000109',
'store_basics' => [
'store_reference_id' => '',
'brand_name' => '',
'store_name' => '',
'store_business' => '',
],
'store_address' => [
'address_code' => '440305',
'address_detail' => '',
'address_complements' => '',
'longitude' => '',
'latitude' => '',
],
'store_business' => [
'service_phone' => '0755-86013388',
'business_hours' => '周一至周五 09:00-20:00|周六至周日 10:00-22:00',
],
],
]);
print_r($response->getStatusCode() === 204);
php
$response = $instance['v3/merchant-store/stores/{store_id}']->patch([
'store_id' => '20488000',
'json' => [
'sub_mchid' => '1900000109',
'store_basics' => [
'store_reference_id' => '',
'brand_name' => '',
'store_name' => '',
'store_business' => '',
],
'store_address' => [
'address_code' => '440305',
'address_detail' => '',
'address_complements' => '',
'longitude' => '',
'latitude' => '',
],
'store_business' => [
'service_phone' => '0755-86013388',
'business_hours' => '周一至周五 09:00-20:00|周六至周日 10:00-22:00',
],
],
]);
print_r($response->getStatusCode() === 204);
返回字典 | 类型 | 描述 |
---|---|---|
空字符串(无返回内容) |